home *** CD-ROM | disk | FTP | other *** search
- // ____________________________________________________
- // | |
- // | Project: POWER VIEW IDE |
- // | File: TERRMON.H |
- // | Compiler: WPP386 (10.6) |
- // | |
- // | Subject: Terror_monitor class interface |
- // | |
- // | Author: Emil Dotchevski |
- // |____________________________________________________|
- //
- // E-mail: zajo@geocities.com
- // URL: http://www.geocities.com/SiliconValley/Bay/3577
-
- #ifndef _TERRMON_H_INCLUDED
- #define _TERRMON_H_INCLUDED
-
- class Terror_monitor: public Titem
- {
- public:
- char *msg;
- Tfile_editor *editor;
- Terror_monitor( char *error_msg, Titem *_editor );
- virtual ~Terror_monitor( void );
-
- protected:
- virtual void draw( void );
- virtual void event_handler( Tevent &ev );
- };
-
- #endif //TERRMON_H_INCLUDED
-
-
- #ifdef _DECLARE_TERRMON_H
- #define GLOBAL
- #else
- #define GLOBAL extern
- #endif
- GLOBAL Terror_monitor *err_mon;
- #undef GLOBAL
-